home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- set the exitLock to 1
- end
-
- on keyDown
- global tecla
- set tecla to the keyCode
- checkExit()
- end
-
- on checkExit
- global tecla
- if the commandDown and ((the key = ".") or (the key = "q")) and (the exitLock = 1) then
- go("credits", "@::Primer.dir")
- end if
- if (tecla = 53) and (the exitLock = 1) then
- go("credits", "@::Primer.dir")
- end if
- end
-